home *** CD-ROM | disk | FTP | other *** search
/ Fritz: All Fritz / All Fritz.zip / All Fritz / FILES / PROGBLER / WHIZZARD.LZH / SLASHO.BAT < prev    next >
DOS Batch File  |  1984-06-29  |  580b  |  16 lines

  1. REM This is SLASHO.BAT for CLUBware TM software development
  2. REM
  3. REM compile with /O WHEN runtime module BASRUN.EXE is not needed
  4. BASCOM %1,, /E /O
  5. REM
  6. REM CLUBware uses two externals that will be undefined by the linker
  7. REM    SUBINIT in the %1 file
  8. REM    and $PUTCPOS in the QPRINT,ZPRINT etc routines
  9. REM These externals are only called if the software is interpreted
  10. REM So the compiled programs will run correctly with them undefined.
  11. REM
  12. LINK %1.obj+QPRINT+SCRLDN+SCRLUP+XREP+YREP+CLREOL+CLREOS+ZPRINT,%1,nul;
  13. Pause Ctrl-Break to save .OBJ
  14. DEL %1.OBJ
  15. dir %1
  16.